home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libclink / objs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-29  |  332 b   |  23 lines

  1. class Object;
  2.  
  3. class ObjList {
  4.  public:
  5.   ObjList();
  6.   ~ObjList();
  7.   Object **objs;
  8.   int count, max;
  9.   void add(Object *o);
  10. };
  11.  
  12. class Object {
  13.  public:
  14.   Object(char *name);
  15.   ~Object();
  16.   StringList defs, refs;
  17.   int df, rf, lf, busy;
  18.   ObjList deps;
  19.   Object *next;
  20.   static Object *first;
  21.   char *name;
  22. };
  23.